home *** CD-ROM | disk | FTP | other *** search
/ Chip 2006 June (Extra) / CHIP 2006-06.3.iso / program / opensource / clamav-devel.exe / contrib / Windows / clamadoc.h < prev    next >
Encoding:
C/C++ Source or Header  |  2006-05-16  |  1.8 KB  |  63 lines

  1. // clamadoc.h : interface of the CClamavDoc class
  2. //
  3. /////////////////////////////////////////////////////////////////////////////
  4.  
  5. /*
  6.  *  Copyright (C) 2004 Nigel Horne <njh@bandsman.co.uk>
  7.  *
  8.  *  This program is free software; you can redistribute it and/or modify
  9.  *  it under the terms of the GNU General Public License as published by
  10.  *  the Free Software Foundation; either version 2 of the License, or
  11.  *  (at your option) any later version.
  12.  *
  13.  *  This program is distributed in the hope that it will be useful,
  14.  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
  15.  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  16.  *  GNU General Public License for more details.
  17.  *
  18.  *  You should have received a copy of the GNU General Public License
  19.  *  along with this program; if not, write to the Free Software
  20.  *  Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
  21.  *  MA 02110-1301, USA.
  22.  */
  23. class CClamavDoc : public CDocument
  24. {
  25. protected: // create from serialization only
  26.     CClamavDoc();
  27.     DECLARE_DYNCREATE(CClamavDoc)
  28.  
  29. // Attributes
  30. public:
  31.  
  32. // Operations
  33. public:
  34.  
  35. // Overrides
  36.     // ClassWizard generated virtual function overrides
  37.     //{{AFX_VIRTUAL(CClamavDoc)
  38.     public:
  39.     virtual BOOL OnNewDocument();
  40.     //}}AFX_VIRTUAL
  41.  
  42. // Implementation
  43. public:
  44.     virtual ~CClamavDoc();
  45.     virtual void Serialize(CArchive& ar);   // overridden for document i/o
  46. #ifdef _DEBUG
  47.     virtual void AssertValid() const;
  48.     virtual void Dump(CDumpContext& dc) const;
  49. #endif
  50.  
  51. protected:
  52.  
  53. // Generated message map functions
  54. protected:
  55.     //{{AFX_MSG(CClamavDoc)
  56.         // NOTE - the ClassWizard will add and remove member functions here.
  57.         //    DO NOT EDIT what you see in these blocks of generated code !
  58.     //}}AFX_MSG
  59.     DECLARE_MESSAGE_MAP()
  60. };
  61.  
  62. /////////////////////////////////////////////////////////////////////////////
  63.